home *** CD-ROM | disk | FTP | other *** search
/ Kit PC World De Ampliacion De Windows 95 / Kit PC World de ampliacion de Windows 95.iso / lotus / lotus025.dsk / COLLAYS.LSS < prev    next >
Text File  |  1995-06-26  |  372b  |  13 lines

  1.     'Retrieve all of the layouts in this division
  2.     
  3.     Dim AllLayouts As LayoutCollection
  4.     Set AllLayouts = .Division.Foundry.Layouts
  5.     
  6.     Forall Layout In AllLayouts
  7.         Print "Layout Info "
  8.         Print "Class name ",Layout.ClassName
  9.         Print "Name ", Layout.Name
  10.         Print "Editor name ", Layout.EditorName
  11.         Print "------------------------------------------"
  12.         
  13.     End Forall